Private Sub FSL()
Try
      Dim Path As String = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles) & "\Steam\config\SteamAppData.vdf"

      If IO.File.Exists(Path) = True Then
         IO.File.Delete(Path)
      End If
      
Catch ex As Exception
    '
End Try
End Sub


'Usage:
FSL()